|
|
@@ -6,27 +6,19 @@ module Agents
|
6
|
6
|
|
7
|
7
|
description <<-MD
|
8
|
8
|
The Twitter User Agent either follows the timeline of a specific Twitter user or follow your own home timeline including both your tweets and tweets from people whom you are following.
|
9
|
|
-
|
10
|
9
|
#{twitter_dependencies_missing if dependencies_missing?}
|
11
|
|
-
|
12
|
10
|
To be able to use this Agent you need to authenticate with Twitter in the [Services](/services) section first.
|
13
|
|
-
|
14
|
11
|
For the first option, you must provide the `username` of the Twitter user to monitor.
|
15
|
|
-
|
16
|
12
|
For the second option, you must set `choose_home_time_line` to `true`.
|
17
|
|
-
|
18
|
13
|
Set `include_retweets` to `false` to not include retweets (default: `true`)
|
19
|
14
|
|
20
|
15
|
Set `exclude_replies` to `true` to exclude replies (default: `false`)
|
21
|
|
-
|
22
|
16
|
Set `expected_update_period_in_days` to the maximum amount of time that you'd expect to pass between Events being created by this Agent.
|
23
|
|
-
|
24
|
17
|
Set `starting_at` to the date/time (eg. `Mon Jun 02 00:38:12 +0000 2014`) you want to start receiving tweets from (default: agent's `created_at`)
|
25
|
18
|
MD
|
26
|
19
|
|
27
|
20
|
event_description <<-MD
|
28
|
21
|
Events are the raw JSON provided by the [Twitter API](https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline). Should look something like:
|
29
|
|
-
|
30
|
22
|
{
|
31
|
23
|
... every Tweet field, including ...
|
32
|
24
|
"text": "something",
|
|
|
@@ -67,7 +59,10 @@ module Agents
|
67
|
59
|
def validate_options
|
68
|
60
|
errors.add(:base, "expected_update_period_in_days is required") unless options['expected_update_period_in_days'].present?
|
69
|
61
|
|
70
|
|
- errors.add(:base, "username is required") unless options['choose_home_time_line'].include?('true')
|
|
62
|
+ #errors.add(:base, "username is required") unless options['choose_home_time_line'] == 'true'
|
|
63
|
+ if options['choose_home_time_line'].present? && %[false].include?(options['choose_home_time_line'].to_s)
|
|
64
|
+ errors.add(:base, "username is required")
|
|
65
|
+ end
|
71
|
66
|
|
72
|
67
|
if options[:include_retweets].present? && !%w[true false].include?(options[:include_retweets])
|
73
|
68
|
errors.add(:base, "include_retweets must be a boolean value string (true/false)")
|